home *** CD-ROM | disk | FTP | other *** search
-
- from JascApp import *
-
- def ScriptProperties():
- return {
- 'Author': 'Jasc Software Inc.',
- 'Copyright': 'Copyright ⌐ 2003 Jasc Software Inc., all rights reserved.',
- 'Description': 'Factory default preset for FineLeather effect',
- 'Host': 'Paint Shop Pro 8',
- 'Host Version': '8.00',
- }
-
- def Preset_FineLeather():
- return {
- 'GeneralSettings': {
- 'AutoActionMode': 0,
- 'ExecutionMode': 0
- },
- 'Angle': 30,
- 'FurrowCount': 40,
- 'Transparency': 250,
- 'Blur': 40,
- 'Color': (220, 220, 220),
- 'FurrowLength': 4
- }
-
- def Do(Environment):
- App.Do( Environment, 'FineLeather', Preset_FineLeather())
-